Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin
/
app
/
V2
/
Resources
/
Filename :
AppButtonResource.php
back
Copy
<?php namespace App\V2\Resources; use App\Libraries\Helpers; /** * Transforms Reward data for API responses */ class AppButtonResource extends BaseResource { private $active = true; private $text; public function __construct($active, $text) { $this->active = $active; $this->text = $text; } public function setActive($active){ $this->active = $active; } public function setText($text) { return $this->text = $text; } public function toArray(){ return ['active' => $this->active, 'text' => $this->text]; } } ?>